@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
:root{
    --red: #DB3030;
    --green: #4B573F;
    --black: #171717;
    --dark-gray: #1F1F1F;
    --gray: #5F5F5F;
    --light-gray: #C8C8C8;
    --white: #D9D9D9;
    --container-width: 1110px;
    --mobile-gap: 15px;
}
html{
    font-size: 16px;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Manrope', sans-serif;
    background-color: var(--black);
    color: #fff;
}

details summary{
    list-style: none;
}
details summary::-webkit-details-marker {
    display:none;
}
a, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    text-decoration: none;
}
a[href^="tel:"], a[href^="mailto:"]{
    white-space: nowrap;
}
input, textarea, button, select{
    font-size: 1rem;
    font-family: inherit;
}
label, button{
    cursor: pointer;
}

button:focus,
textarea:focus,
select:focus {
    outline: none !important;
    -webkit-appearance: none;
    box-shadow: none;
}

input:focus {
    outline: none !important;
}

a:active, a:focus {
    outline: 0;
    outline: none !important;
    -moz-outline-style: none;
}

a, img, span, input, button, svg, path {
    transition: .3s all ease;
}

a {
    display: inline-block;
    text-decoration: none;
}


.wrapper {
    overflow: hidden;
}

.owl-drag {
    overflow: hidden;
}

.owl-item {
    float: left;
}

.owl-dots {
    display: none;
}

.none{
    display: none !important;
}

[data-video]{
    cursor: pointer;
}
[data-video] *{
    pointer-events: none;
}

h1,h2,h3,h4,h5,h6, .h1,.h2,.h3,.h4,.h5,.h6{
    margin: 0;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
}
h2, .h2{
    font-size: clamp(30px, calc(20px + 2vw), 44px);
}
h3, .h3{
    font-size: clamp(20px, calc(10px + 2vw), 32px);
}
h4, .h4{
    font-size: clamp(14px, calc(10px + 1vw), 20px);
}

.cross{
    --width: 10px;
    --weight: 1px;
    --color: black;
    --angle: 45deg;
    grid-template-rows:var(--width);
    grid-template-columns: var(--width);
    overflow: hidden;
    border: none;
    background: none;
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    padding: 0;
}
.cross:before, .cross:after{
    content: '';
    width: var(--width);
    height: var(--weight);
    background: var(--color);
    transform-origin: center;
    grid-area: 1/1;
}
.cross:before{
    transform: rotate(var(--angle));
}
.cross:after{
    transform: rotate(calc(var(--angle) + 90deg));
}

.txt-block>*:nth-child(1){
    margin-top: 0;
}
.txt-block>*:last-child{
    margin-bottom: 0;
}

.gray-txt{
    color: var(--gray) !important;
}
.corner-btn{
    --color: var(--red);
    background: linear-gradient(to bottom, transparent, transparent 8px, var(--color) 8px, var(--color) calc(100% - 8px), transparent calc(100% - 8px)),
    linear-gradient(to right, white, white 8px, var(--color) 8px, var(--color) calc(100% - 8px), white calc(100% - 8px));
    color: white;
    font-size: 1rem;
    padding: 1.125em 3.9em;
    border: none;
}

.swiper{
    width: 100%;
}
.swiper-wrapper{
    height: auto;
}
.swiper-slide{
    height: auto;
}

.red-btn {
    padding: 5px 14px;
    background: var(--red);
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    border: none;
}
.red-btn:hover {
    background: #4E4E4E;
    color: #fff;
}

#popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.5);
    padding: 30px;
}
.popup_content{
    width: 100%;
}
#popup.active{
    display: grid;
    grid-template-columns: 100%;
    align-items: flex-start;
    justify-items: center;
    z-index: 1055;
}
#popup .video iframe{
    width: 100%;
    max-height: 600px;
    aspect-ratio: 16/9;
}

#popup .success{
    background: var(--dark-gray);
    color: white;
    padding: 55px 100px 65px 100px;
    max-width: 540px;
}

#popup .success .check{
    width: 110px;
    height: 110px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 45px auto 0 auto;
}

.form-success_title{
    font-size: clamp(20px, calc(15px + 1vw), 30px);
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-align: center;
}
.form-success_subtitle{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.desktop-header-top{
    border-bottom: 1px solid #4F4F4F;
    .container{
        display: grid;
        grid-template-columns: 230px auto 1fr auto;
        border-left: 1px solid #4F4F4F;
        border-right: 1px solid #4F4F4F;
    }
}
.desktop-header_logo{
    border-right: 1px solid #4F4F4F;
    font-size: 9px;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    column-gap: 10px;
    padding: 15px 15px 15px 0;
    color: white;
    & :where(img, svg){
        width: 100%;
        object-fit: contain;
    }
}
.change-city-desktop{
    position: relative;
}
.change-city-desktop_label{
    border-right: 1px solid #4F4F4F;
    padding: 15px;
    height: 100%;
    display: grid;
    grid-template-columns: 100%;
    align-content: center;
}
.change-city-desktop_value{
    display: flex;
    align-items: flex-start;
    line-height: 1em;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
}
.change-city-desktop_label-txt{
    margin: 5px 0 0 0;
    color: #9B9B9B;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    &:after{
        content: '';
        width: 5px;
        aspect-ratio: 1/1;
        border-right: 1px solid var(--red);
        border-bottom: 1px solid var(--red);
        translate: 0 -17%;
        rotate: 45deg;
    }
}
.change-city-desktop_content{
    position: absolute;
    top: 100%;
    left: 0;
    width: 520px;
    background: var(--dark-gray);
    padding: 30px;
    z-index: 10;
}
.change-city-desktop_content-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #E5E5E5;
}
.change-city-desktop_close{
    --color: var(--gray);
    --width: 16px;
}
.change-city-desktop_search{
    --btn-width: 17px;
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
}
.change-city-desktop_search-input{
    grid-area: 1/1;
    color: #A7A7A7;
    font-size: 14px;
    padding: 1em calc(1.4em + var(--btn-width)) 1em 1.4em;
    line-height: 1em;
    background: var(--black);
    border: none;
}
.change-city-desktop_search-send{
    grid-area: 1/1;
    margin: 0 20px 0 0;
    justify-self: flex-end;
    width: var(--btn-width);
    border: none;
    padding: 0;
    background: transparent;
    & :where(img, svg){
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    path{
        fill: var(--red);
    }
}
.change-city-desktop_list{
    margin: 17px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    max-height: 685px;
    overflow-y: auto;
}
.change-city-desktop_city{
    color: #E5E5E5;
    font-size: 14px;
}
.desktop-header_tel-list{
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}
.desktop-header_tel{
    font-weight: 700;
    color: white;
}
.desktop-header-menu{
    border-bottom: 1px solid #4F4F4F;
    position: relative;
    .container{
        display: flex;
        flex-wrap: wrap;
        gap: 45px;
        padding: 0 40px;
    }
}
.desktop-header-menu>.container{
    border-left: 1px solid #4F4F4F;
    border-right: 1px solid #4F4F4F;
}
.desktop-header-menu_item{
    padding: 17px 0;
}
.desktop-header-menu_item-link{
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1em;
}
.desktop-header_cta-btn{
    line-height: 1em;
    font-size: 12px;
    padding: .8em 1.4em;
    align-self: center;
}
.mobile-header{
    display: none;
}
.mobile-header-top{
    border-bottom: 1px solid #4F4F4F;
    padding: 10px;
    position: relative;
    .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.mobile-header_logo{
    display: grid;
    grid-template-columns: 50px 105px;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    color: white;
    & :where(img, svg){
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.change-city-mobile_value{
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.change-city-mobile_label-txt{
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    &:after{
        content: '';
        width: 5px;
        height: 5px;
        border-right: 1px solid var(--red);
        border-bottom: 1px solid var(--red);
        translate: 0 -17%;
        rotate: 45deg;
    }
}
.change-city-mobile_content{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-gray);
    padding: 30px;
    z-index: 100;
}
.change-city-mobile_content-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #E5E5E5;
}
.change-city-mobile_close{
    --color: var(--gray);
    --width: 16px;
}
.change-city-mobile_search{
    --btn-width: 17px;
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
}
.change-city-mobile_search-input{
    grid-area: 1/1;
    color: #A7A7A7;
    font-size: 14px;
    padding: 1em calc(1.4em + var(--btn-width)) 1em 1.4em;
    line-height: 1em;
    background: var(--black);
    border: none;
}
.change-city-mobile_search-send{
    grid-area: 1/1;
    margin: 0 20px 0 0;
    justify-self: flex-end;
    width: var(--btn-width);
    border: none;
    padding: 0;
    background: transparent;
    & :where(img, svg){
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    path{
        fill: var(--red);
    }
}
.change-city-mobile_list{
    margin: 17px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    max-height: 352px;
    overflow-y: auto;
}
.change-city-mobile_city{
    color: white;
}
.mobile-header-bottom{
    border-bottom: 1px solid #4F4F4F;
    padding: 10px;
    position: relative;
    .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }
}
.mobile-header-bottom>.container{
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}
.mobile-header_burger-btn{
    display: flex;
}
.mobile-header-bottom .desktop-header_cta-btn{
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    text-align: center;
    white-space: normal;
}
.mobile-header_vacancies-btn{
    min-width: 106px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #4F4F4F;
    border-radius: 6px;
    background: #242424;
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}
.mobile-header_vacancies-btn:after{
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--red);
    border-bottom: 1.5px solid var(--red);
    translate: 0 -2px;
    rotate: 45deg;
}
.mobile-header_vacancies-btn.active{
    border-color: var(--red);
    background: var(--red);
}
.mobile-header_vacancies-btn.active:after{
    border-color: white;
    translate: 0 2px;
    rotate: 225deg;
}
.burger-menu{
    --height: 100vh;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: var(--height);
    background: #171717F2;
    backdrop-filter: blur(34px);
    padding: 10px 0 18px;
    display: none;
    overflow: auto;
    border-top: 1px solid #343434;
    .container{
        display: grid;
        grid-template-columns: 100%;
        align-content: flex-start;
        gap: 10px;
    }
}
.burger-menu.active{
    display: block;
    z-index: 99;
}
.burger-menu_links{
    display: grid;
    grid-template-columns: 100%;
    gap: 2px;
}
.burger-menu_item{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 0;
}
.burger-menu_item-link{
    color: #D8D8D8;
}
.burger-menu_vacancies-list{
    display: grid;
    grid-template-columns: 100%;
    gap: 8px;
}
.burger-menu_all-vacancies{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
.burger-menu_all-vacancies{
    min-height: 40px;
    margin: 0 0 4px 0;
    border: 1px solid #303030;
    border-radius: 6px;
    background: #242424;
}
.burger-menu_all-vacancies:hover{
    border-color: #4F4F4F;
    background: #2A2A2A;
    color: white;
}
.burger-menu_item-list{
    padding: 0 10px 10px 10px;
    display: grid;
    grid-template-columns: 100%;
    gap: 2px;
}
.burger-menu_vacancy{
    min-height: 38px;
    padding: 5px 7px;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    color: white;
}
.burger-menu_vacancy_icon{
    width: 30px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 6px;
    background: #303030;
}
.burger-menu_vacancy_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.burger-menu_vacancy:hover{
    background: #2A2A2A;
    color: white;
}
.burger-menu_vacancy-group{
    display: block;
    overflow: hidden;
    border: 1px solid #303030;
    border-radius: 8px;
    background: #1C1C1C;
    font-size: 12px;
}
.burger-menu_vacancy-group[open]{
    border-color: rgba(219, 48, 48, .85);
    background: #202020;
}
.burger-menu_vacancy-group__title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
.burger-menu_vacancy-group__text{
    display: grid;
    gap: 2px;
    min-width: 0;
}
.burger-menu_vacancy-group__text strong{
    font-size: 12px;
}
.burger-menu_vacancy-group__text em{
    color: #AFAFAF;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    text-transform: none;
}
.burger-menu_vacancy-group__title::-webkit-details-marker{
    display: none;
}
.burger-menu_vacancy-group__title:after{
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
    translate: 0 -20%;
    rotate: 45deg;
}
.burger-menu_vacancy-group__title small{
    margin-left: auto;
    padding: 4px 7px;
    border-radius: 999px;
    background: #303030;
    color: #BEBEBE;
    font-size: 10px;
    line-height: 1;
}
.burger-menu_vacancy-group[open] .burger-menu_vacancy-group__title:after{
    translate: 0 20%;
    rotate: 225deg;
}
.burger-menu_tel{
    margin: 10px 0 0 0;
    font-weight: 700;
    color: white;
}
header {
    border-bottom: 1px solid #4F4F4F;
    position: relative;
    z-index: 2;
    background-color: var(--black);
}

header .top-con {
    border-bottom: 1px solid #4F4F4F;
}

header .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #4F4F4F;
    border-left: 1px solid #4F4F4F;
}

header .top-nav ul {
    margin: 0;
    padding: 0;
}
.head-link{
    flex-shrink: 0;
}

header .head-logo {
    display: flex;
    align-items: center;
}

header .head-logo span {
    width: 146px;
    margin-left: 8px;
    font-size: 9px;
    font-weight: 400;
    line-height: 14px;
    color: #fff;
}

header .head-drop {
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 0em;
    color: #E5E5E5;
    margin-top: 7px;
}

header .location-drop {
    margin-left: 14px;
    margin-right: 16px;
    padding: 12px 16px;
    border-right: 1px solid #4F4F4F;
    border-left: 1px solid #4F4F4F;
}

.dropdown-toggle::after {
    content: none;
}

header .head-drop img {
    margin-left: 5px;
}

header .head-drop[aria-expanded="true"] img {
    transform: rotate(180deg);
}

header .head-contact {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 20px;
}

header .head-contact a {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    position: relative;
}

header .head-contact a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 58px;
    height: 100%;
    background: linear-gradient(270deg, #1B1B1B 0%, rgba(29, 29, 29, 0) 100%);
    transition: .3s all ease;
}

header .head-contact a:hover::after {
    width: 0;
}

header .free-call {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

header .free-call a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin-right: 10px;
}

header .free-call span {
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 255, 255, .6);
}
#float-whatsapp{
    background: white;
    width: 55px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: fixed;
    right: 120px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    & :where(img, svg){
        width: 32px;
        height: auto;
        object-fit: contain;
    }
    path{
        fill: var(--green);
    }
}
#float-tg{
    background: white;
    width: 55px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: fixed;
    right: 55px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    & :where(img, svg){
        width: 32px;
        height: auto;
        object-fit: contain;
    }
    path{
        fill: var(--green);
    }
}

.slider_nav-btn{
    border: 1px solid #D9D9D9;
    width: 70px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    &:before{
        content: '';
        width: 17px;
        aspect-ratio: 1/1;
        border-right: 1px solid white;
        border-bottom: 1px solid white;
        translate: -17% 0;
        rotate: -45deg;
    }
}
.slider_nav-btn.prev{
    scale: -1 1;
}

/* navbar */
header {
    position: relative;
    z-index: 99;
    .navbar {
        padding: 0 43px;
        border-right: 1px solid #4F4F4F;
        border-left: 1px solid #4F4F4F;
        position: static;
    }
}

header .navbar .navbar-nav {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

header .navbar .nav-item {
    .nav-link {
        color: #E5E5E5;
        font-size: 12px;
        font-weight: 600;
        line-height: 22px;
        position: relative;
        padding: 17px 0;
        &:after {
            content: "";
            display: block;
            width: 0;
            height: 1px;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            background: var(--red);
            transition: .3s all ease;
        }
    }
}
.nav-item.parent .nav-link{
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-item_parent-marker{
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    align-items: center;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    translate: 0 -17%;
    &:before{
        content: '';
        grid-area: 1/1;
        width: 5px;
        height: 1px;
        background: var(--red);
        transform-origin: right center;
        rotate: -45deg;
    }
    &:after{
        content: '';
        grid-area: 1/1;
        width: 5px;
        height: 1px;
        background: var(--red);
        transform-origin: left center;
        rotate: 45deg;
    }
}
.nav-item .hover-menu{
    display: none;
}
.nav-item.parent:hover>.nav-link .nav-item_parent-marker{
    translate: 0 0;
    &:before{
        width: 10px;
        background: white;
        transform-origin: center center;
        rotate: -45deg;
    }
    &:after{
        width: 10px;
        background: white;
        transform-origin: center center;
        rotate: 45deg;
    }
}
.desktop-header-menu_item-link:hover>.nav-item_parent-marker{
    translate: 0 0;
    &:before{
        width: 10px;
        background: white;
        transform-origin: center center;
        rotate: -45deg;
    }
    &:after{
        width: 10px;
        background: white;
        transform-origin: center center;
        rotate: 45deg;
    }
}
.nav-item.parent:hover .hover-menu{
    display: block;
    z-index: 99;
}
header .navbar .nav-item .nav-link:hover::after {
    width: 30px;
}
.vacancies-menu{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #171717;
    width: 100%;
    z-index: 99;
    display: none;
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .45);
    max-height: calc(100vh - 118px);
    overflow-y: auto;
}
.vacancies-menu>.container{
    display: block;
    padding: 16px 40px 18px 40px;
}
.desktop-header-menu_item:hover>.vacancies-menu{
    display: block;
    z-index: 99;
}
.desktop-header-menu_item.is-open>.vacancies-menu,
.desktop-header-menu_item>.vacancies-menu:hover,
.desktop-header-menu_item>.vacancies-menu:focus-within{
    display: block;
    z-index: 99;
}
.vacancies-menu:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
}
.vacancies-menu_header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 12px 0;
}
.vacancies-menu_eyebrow{
    color: #8D8D8D;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}
.vacancies-menu_title{
    margin: 5px 0 0 0;
    color: white;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}
.vacancies-menu_all{
    color: white;
    border: 1px solid #4F4F4F;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.vacancies-menu_all:hover{
    color: white;
    border-color: var(--red);
    background: var(--red);
}
.vacancies-menu_body{
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
    padding: 14px 0 0 0;
    border-top: 1px solid #2A2A2A;
}
.vacancies-menu_panels,
.vacancies-menu_categories{
    min-width: 0;
}
.vacancies-menu_section-title{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px 0;
    color: #BDBDBD;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}
.vacancies-menu_section-title span:before{
    content: 'Топ';
    display: inline-flex;
    align-items: center;
    margin: 0 8px 0 0;
    padding: 3px 6px;
    border-radius: 999px;
    background: var(--red);
    color: white;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
}
.vacancies-menu_section-title small{
    min-width: 26px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #2D2D2D;
    color: #BEBEBE;
    font-size: 10px;
    text-align: center;
}
.vacancies-menu_panel-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px 10px;
}
.vacancies-menu-panel[hidden]{
    display: none;
}
.vacancies-menu-item{
    min-height: 36px;
    padding: 4px 6px;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    color: #F1F1F1;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
}
.vacancies-menu-item_icon{
    background: #303030;
    width: 28px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
    border-radius: 6px;
}
.vacancies-menu-item_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vacancies-menu-item:hover{
    background: #2A2A2A;
    color: white;
}
.vacancies-menu-item:hover .vacancies-menu-item_icon{
    background: var(--red);
}
.vacancies-menu_category-list{
    display: grid;
    grid-template-columns: 100%;
    gap: 4px;
}
.vacancies-menu-category{
    width: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 38px;
    padding: 7px 9px;
    border-radius: 6px;
    background: transparent;
    color: #EDEDED;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
    text-transform: uppercase;
}
.vacancies-menu-category span{
    display: grid;
    grid-template-columns: 100%;
    gap: 2px;
}
.vacancies-menu-category strong{
    font: inherit;
}
.vacancies-menu-category em{
    color: #9F9F9F;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    text-transform: lowercase;
}
.vacancies-menu-category small{
    min-width: 24px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #2D2D2D;
    color: #BEBEBE;
    font-size: 10px;
    text-align: center;
}
.vacancies-menu-category:hover{
    background: #2A2A2A;
    color: white;
}
.vacancies-menu-category.is-active{
    background: var(--red);
    color: white;
}
.vacancies-menu-category.is-active em{
    color: #FFD1D1;
}
.vacancies-menu-category.is-active small{
    background: #B92828;
    color: white;
}
@media (max-width: 1180px){
    .vacancies-menu_body{
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 16px;
    }
    .vacancies-menu_panel-list{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* header end */

.section{
    margin: 100px 0;
}
.section_title{
    font-size: clamp(20px, calc(10px + 2vw), 44px);
    text-transform: uppercase;
    font-weight: 700;
}
.section_title-big{
    font-size: clamp(24px, calc(15px + 2vw), 44px);
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    gap: .5em;
}
.breadcrumb-item{
    display: flex;
    align-items: center;
    gap: .25em;
    color: white;
    line-height: 1em;
    padding: 0;
    padding-left: 0;
}
.breadcrumb-item:not(:last-child):after{
    content: '/';
}
.breadcrumb-item:before{
    display: none;
}
.breadcrumb-item:last-child{
    color: #B9B9B9;
}

.article-card{
    background: var(--dark-gray);
    display: grid;
    grid-template-columns: 100%;
    color: white;
    align-items: flex-start;
    grid-template-rows: auto 1fr;
}

.article-card:hover{
    background: var(--black);
}
.article-card_img{
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.article-card_content{
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article-card_date{
    color: #808080;
    font-size: 14px;
}
.article-card_title{
    margin: 1em 0 auto 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
}
.article-card_txt{
    margin: 10px 0 auto 0;
    color: #BBBBBB;
    font-size: 16px;
    line-height: 1.5em;
}
.article-card_more{
    margin: 30px 0 0 0;
    box-shadow: 0 0 0 1px #707070;
    font-size: 16px;
    font-weight: 600;
    padding: 1em 2.6em;
    line-height: 1em;
    width: fit-content;
}
.article-card_more:hover{
    background: var(--red);
    box-shadow: none;
}
.vacancy-card{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 260px 1fr auto;
    border: 1px solid #656565;
}
.vacancy-card_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vacancy-card_content{
    background: var(--dark-gray);
    padding: 20px;
    display: grid;
    grid-template-columns: 100%;
    color: white;
}
.vacancy-card_title{
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
}
.vacancy-card_salary-wrapper{
    margin: 50px 0 0 0;
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
}
.vacancy-card_salary-period{
    text-transform: uppercase;
    color: #AAAAAA;
    font-weight: 700;
    line-height: 1em;
}
.vacancy-card_salary{
    font-size: 26px;
    font-weight: 800;
    line-height: 1em;
}
.vacancy-card_more{
    background: var(--black);
    color: white;
    font-size: 16px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    &:after{
        content: '';
        width: 10px;
        height: 10px;
        flex-shrink: 0;
        border-right: 1px solid white;
        border-bottom: 1px solid white;
        translate: -17% 0;
        rotate: -45deg;
    }
}
.vacancy-card:hover .vacancy-card_more{
    background: var(--red);
}

.faq-item_question{
    background: var(--dark-gray);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item_marker{
    width: 35px;
    height: 35px;
    background: var(--green);
    flex-shrink: 0;
    --color: white;
    --width: 16px;
    --angle: 0deg;
}
[open] .faq-item_marker{
    --angle: 45deg;
}
.faq-item_answer{
    margin: 20px 0 0 0;
    background: var(--green);
    padding: 40px 40px 60px;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #A1A1A1;
    font-size: 16px;
}
.pagination_btn{
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    padding: 10px;
}
.pagination_btn :where(img, svg){
    width: 10px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.next-page.pagination_btn :where(img, svg){
    transform: scale(-1, 1);
}
.pagination_btn path{
    fill: #757575;
}
.pagination_list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.pagination_page{
    width: 40px;
    height: 40px;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination_page.active{
    background: var(--green);
    color: white;
}

.second-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 255px;
    background: var(--red);
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    position: relative;
}

.second-btn .btn-bg {
    width: 8px;
    height: 8px;
    position: absolute;
    background: #fff;
}

.second-btn .left-top {
    left: 0;
    top: 0;
}

.second-btn .right-top {
    right: 0;
    top: 0;
}

.second-btn .left-bottom {
    left: 0;
    bottom: 0;
}

.second-btn .right-bottom {
    right: 0;
    bottom: 0;
}

.second-btn:hover {
    color: #fff;
    background: #4F4F4F;
}

.dropdown-menu {
    min-width: 520px;
    padding: 34px 30px;
    background: var(--dark-gray);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 0;
    left: -17px !important;
     top: 16px !important;
    z-index: 10;
}

.dropdown-menu .menu-inner p {
    margin-bottom: 24px;
    color: #E5E5E5;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.dropdown-menu .menu-inner form {
    width: 100%;
}

.dropdown-menu .menu-inner form .search-form {
    width: 100%;
    position: relative;
    margin-bottom: 17px;
}

.dropdown-menu .menu-inner form .search-form input {
    width: 100%;
    height: 50px;
    background: var(--black);
    padding: 15px 20px;
    border: none;
}

.dropdown-menu .menu-inner form .search-form input,
.dropdown-menu .menu-inner form .search-form input::placeholder {
    color: #A7A7A7;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.dropdown-menu .menu-inner form .search-form .search-btn {
    position: absolute;
    right: 15px;
    top: 11px;
    border: none;
    background: transparent;
}

.search-block {
    display: flex;
    gap: 8px 0;
}

.dropdown-menu .menu-inner .search-block .search-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.dropdown-menu .menu-inner .search-block .search-item a {
    color: #E5E5E5;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.dropdown-menu .menu-inner .search-block .search-item a:hover {
    color: var(--red);
}

.dropdown-menu .menu-inner {
    position: relative;
}

.dropdown-menu .menu-inner .menu-closer {
    position: absolute;
    top: 0;
    right: 0;
    transition: .5s;
}

.dropdown-menu .menu-inner .menu-closer:hover {
    transform: rotate(90deg);
}


/* main section end */
.forces-sec {
    background-color: var(--dark-gray);
    overflow: hidden;
}

.forces-sec .forces-block {
    height: 422px;
    position: relative;
    padding-top: 54px;
    padding-bottom: 40px;
}

.forces-sec .one-col {
    border-right: 1px solid #4F4F4F;
}

.forces-sec .forces-block .forces-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.forces-sec .forces-block .forces-inner .forces-title {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    margin-top: 7px;
}

.forces-sec .forces-block .forces-inner p {
    margin-top: 26px;
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 244px;
}

.forces-sec .forces-left .forces-img {
    position: absolute;
    right: -12px;
    top: 70px;
}

.forces-sec .forces-left-two .forces-img {
    position: absolute;
    right: -12px;
    top: 140px;
}

.forces-sec .forces-right .forces-img {
    position: absolute;
    right: -180px;
    top: -48px;
}

.forces-sec .forces-right-two .forces-img {
    position: absolute;
    right: -130px;
    top: 85px;
}

.forces-right-two,
.forces-right {
    padding-left: 60px;
}

.forces-sec .forces-con {
    position: relative;
    border-bottom: 1px solid #4F4F4F;
}

.forces-sec .forces-con::before {
    content: "";
    width: 26px;
    height: 26px;
    background: var(--dark-gray);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -13px;
    display: block;
    z-index: 2;
}


/* --------------- */
.red-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
}

.link-btn {
    display: flex;
    align-items: center;
}

.link-btn .link-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.link-btn .link-arrow {
    height: 36px;
    width: 36px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.link-btn:hover .link-arrow {
    background: var(--red);
}

/* --------------- */

.set-sec {
    padding-top: 100px;
}

.set-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.set-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 47px;
}

.set-list {
    border: 1px solid #5B5B5B;
    padding: 40px;
    height: 100%;
}

.set-list .set-tag {
    background: var(--green);
    padding: 6px 22px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.set-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.set-list ul li {
    position: relative;
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    padding-left: 22px;
}

.set-list ul li:last-child {
    margin-bottom: 0;
}

.set-list ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    background: var(--green);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.set-sec .set-rov {
    margin-bottom: 26px;
}

/* video section */
.video-sec {
    padding-top: 80px;
}

.video-sec .title {
    margin-bottom: 40px;
    text-align: center;
}

.video-sec .title .video-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 70px;
}

.video-sec .title .video-title img {
    margin-left: 30px;
}

.video-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}


.video-sec .video-block {
    position: relative;
}

.video-sec .video-block img,
.video-sec .video-block video,
.video-sec .video-block iframe {
    width: 100%;
}

.video-sec .video-block .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-sec .video-block .video-btn a img {
    width: 109px;
    height: 109px;
}

.video-sec .video-block .video-btn .play-radius {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-sec .video-block .video-btn .play-radius img {
    width: 193px;
    height: 193px;
    transition: .8s all ease;
}

.video-sec .video-block .video-btn:hover .play-radius img {
    transform: rotate(360deg);
}

/* new-volunteers */
.new-volunteers {
    padding: 0 0 0 10px;
    position: relative;
}

.new-volunteers .flag-img {
    position: absolute;
    left: 0;
    top: 75px;
    height: 250px;
    z-index: -1;
}

.new-volunteers .new-rov {
    justify-content: flex-end;
    padding-bottom: 70px;
}

.new-volunteers .new-con {
    padding-top: 80px;
    border-top: 1px solid #4F4F4F
}

.new-volunteers .new-info {
    margin-bottom: 70px;
}

.new-volunteers .new-info p {
    color: #F8F8F8;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.new-volunteers .new-info img {
    width: 100%;
}

/* monetary-sec */
.monetary-sec {
    padding: 80px 0;
    background: var(--dark-gray);
}


.monetary-block.two {
    margin-top: 40px;
}

.monetary-sec .title {
    margin-bottom: 80px;
}

.monetary-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
}

.monetary-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}

.monetary-sec .monetary-block-title span {
    color: var(--gray);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.monetary-sec .monetary-block-title p {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.monetary-sec .monetary-block-text p {
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
}

.monetary-sec .monetary-block-text p:last-child {
    margin-bottom: 0;
}

.monetary-sec .monetary-block-text a {
    margin-top: 40px;
    padding: 19px 40px;
    width: auto;
}

.monetary-sec .monetary-second-left,
.monetary-sec .monetary-left-col {
    border-right: 1px solid #4F4F4F;
}

.monetary-sec .monetary-left-col .monetary-block-text {
    max-width: 420px;
}

.monetary-sec .monetary-second-right,
.monetary-sec .monetary-right-col {
    padding: 0 40px;
}

.monetary-sec .monetary-rov {
    margin-top: 80px;
}


.monetary-sec .monetary-second-title span {
    color: var(--gray);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.monetary-sec .monetary-second-title p {
    color: #FFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
    margin-bottom: 65px;
}

.monetary-sec .monetary-list-text p {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.monetary-sec .monetary-list-text > span {
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.monetary-sec .monetary-list-text {
    margin-bottom: 50px;
}

.monetary-sec .monetary-list-text:last-child {
    margin-bottom: 0;
}

.monetary-sec .monetary-list p {
    margin-bottom: 24px;
    /* color: #FFF; */
    font-size: 20px;
    /* font-weight: 700; */
    line-height: 32px;
    /* text-transform: uppercase; */
}

.monetary-sec .monetary-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.monetary-sec .monetary-list ul li {
    position: relative;
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 14px;
    padding-left: 22px;
}

.monetary-sec .monetary-list ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 8px;
    background: var(--red);
    width: 8px;
    height: 8px;
}

/* Социальные гарантии и льготы */
.social-sec {
    padding: 100px 0 70px;
}

.social-sec .title {
    margin-bottom: 50px;
}

.social-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.social-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}
.social-rov {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.social-sec .social-block {
    padding: 20px;
    border: 1px solid #4F4F4F;
    background: var(--black);
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    min-height: 160px;
}

.social-sec .social-block.green {
    background: var(--green);
}

/* Если ты готов пойти на службу и защитить Родину, заполни форму */

.form-sec .form-rov {
    background: var(--green);
    padding: 58px 58px 68px;

}

.form-sec .form-title {
    max-width: 417px;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 46px;
    text-transform: uppercase;
}

.for-height {
    height: 100%;
}

.form-left-col {
    border-right: 1px solid #B4B4B4;
}

.form-sec .form-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.form-sec .form-contact {
    display: flex;
    align-items: flex-start;
}

.form-sec .form-contact .icon {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.form-sec .form-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.form-sec .form-numbers a {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
}

.form-sec .form-call a {
    color: #FFF;
    font-size: 57.678px;
    font-weight: 700;
    line-height: 88.319px;
    text-transform: uppercase;
}

.form-sec .form-call p {
    color: #FFF;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.216px;
}

.form-sec .form-contact .icon {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}


.form-block {
    padding-left: 15px;
}

.form-block .form-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-block .form-group span {
    margin-bottom: 10px;
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}

.form-block .form-group input {
    border: none;
    border-bottom: 1px solid #B4B4B4;
    padding: 10px 0;
    max-width: 334px;
    width: 100%;
    background: transparent;
}

.form-block .form-group input,
.form-block .form-group input::placeholder {
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.form-block .form-btn {
    padding-top: 20px;
    margin-bottom: 15px;
}

.form-block .form-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #000;
    padding: 0;
}

.form-block .form-btn button:hover {
    background: var(--red);
}

/* quote section */
.quote-sec {
    padding-top: 100px;
}

.quote-sec .quote-left {
    border-top: 1px solid #323232;
    border-right: 1px solid #323232;
    padding-top: 55px;
    padding-right: 30px;
}

.quote-sec .quote-left .quote-text {
    margin: 40px 0 70px;
    height: 150px;
    overflow: hidden;
}

.quote-sec .quote-left .quote-text p {
    font-family: 'Gilroy', sans-serif;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.quote-sec .quote-left .quote-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.quote-sec .quote-left .quote-author p {
    font-family: 'Gilroy', sans-serif;
    color: #8B8B8B;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
}

.quote-sec .quote-left .quote-author span {
    font-family: 'Gilroy', sans-serif;
    color: #8B8B8B;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.quote-sec .quote-img {
    height: 415px;
}

.quote-sec .quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-btns {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.swiper-btns button {
    position: unset;
    background: transparent;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}


/* этапы */

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--black);
    box-shadow: none;
}

.accordion-item {
    border: none;
    background: transparent;
}

.accordion-item .accordion-header .accordion-button {
    padding: 30px 0;
    border-top: 1px solid var(--light-gray);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-item:last-of-type .accordion-button {
    border-bottom: 1px solid var(--light-gray);
}

.accordion-item .accordion-header .accordion-button .text {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.accordion-item .accordion-header .accordion-button .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
}

.accordion-item .accordion-header .accordion-button[aria-expanded="true"] .icon img {
    transform: rotate(45deg);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 40px 40px 60px;
    background: var(--green);
    margin-bottom: 40px;

    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.accordion-body .body-text {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.accordion-body .body-text span {
    margin-right: 24px;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.accordion-body .body-text p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.accordion-button::after {
    content: none;
}

/* slide */
.slide-content {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.slide-content .owl-nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    left: -117px;
    bottom: 0;
}

.slide-content .owl-nav button {
    padding: 0;
    background: transparent;
    border: none;
}

.slide-content .owl-nav .owl-prev {
    margin-bottom: 16px;
}

.slide-content .owl-nav button.disabled {
    opacity: 0.5;
}

.slide-content .body-slide .slide-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.steps-accordion {
    margin-top: -90px;
}

/* our heroes */
.our-heroes {
    padding-top: 100px;
}

.our-heroes .title {
    margin-bottom: 50px;
}

.our-heroes .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.our-heroes .title .h2-title img {
    margin-left: 30px;
}

.our-heroes .heroes-content {
    padding: 40px 40px 86px;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.our-heroes .heroes-slide {
    overflow: hidden;
    counter-set: hero-index;
}
.our-heroes .heroes-slide .swiper-wrapper{
    height: auto;
}

.hero-block {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    counter-increment: hero-index;
    &:before{
        content: counter(hero-index)'-';
        position: absolute;
        left: 0;
        top: 0;
        color: #535353;
        font-size: 90.435px;
        font-weight: 400;
        line-height: 1;
    }
}
.hero-block:nth-child(n - 9):before{
    content: '0'counter(hero-index)'-';
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hero-top .hero-in-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-top .hero-in {
    margin-left: 40px;
}

.hero-top .hero-img img {
    height: 288px;
    width: 254px;
    object-fit: cover;
}

.hero-top .hero-info p {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 2px;
}

.hero-top .hero-info span {
    color: #8B8B8B;
    font-size: 16px;
    line-height: 25px;
}

.hero-top .hero-tag {
    color: #FFF;
    font-size: 12px;
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    padding: 4px 10px;
    background: var(--red);
}

.hero-text {
    height: 150px;
    overflow: hidden;
}

.hero-text p {
    color: #FFF;
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    line-height: 25px;
}

.hero-block .hero-awards {
    padding: 24px 34px;
    background: var(--black);
    margin-top: 27px;
}

.heroes-content .swiper-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 40px;
    bottom: 40px;
}

.heroes-content .swiper-btns .swiper-button-next {
    margin-bottom: 12px;
}

.heroes-content .swiper-btns button {
    background: var(--green);
}

.heroes-content .swiper-btns button svg path {
    stroke: #fff;
}

.heroes-content .swiper-btns button.swiper-button-disabled svg path {
    opacity: 0.6;
}

.award-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.hero-block .award-title {
    color: #FFF;
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 25px;
}

.award-block .award-img {
    max-width: 130px;
    width: 100%;
    text-align: center;
}

.award-block .award-img span {
    color: #8B8B8B;
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    margin-top: 8px;
}

/* map */
.map-sec {
    padding: 100px 0;
}

.map-sec .map-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.map-sec .map-title .title span {
    background: var(--red);
    color: #FFF;
    font-size: 14px;
    font-family: 'Gilroy', sans-serif;
    padding: 3px 10px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 18px;
}

.map-sec .map-title .title p {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}

.map-sec .map-title .location-drop .map-drop {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 19px 30px;
    border: 1px solid #4E4E4E;
}

.map-sec .map-title .location-drop .map-drop img {
    margin-left: 11px;
}

.map-sec .map-title .location-drop .map-drop[aria-expanded="true"] img {
    transform: rotate(180deg);
}

.map-sec .dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

/* custom checkbox */
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;

    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.12px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 1px solid #FFF;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control input:checked ~ .control__indicator {
    background: var(--green);
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control--checkbox .control__indicator:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

/* modal */
.modal .modal-dialog {
    max-width: 717px;
}

.modal .modal-content {
    border-radius: 0;
    border: none;
    padding: 50px 60px 50px 50px;
    background: var(--dark-gray);
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.06);
    position: relative;
}

.modal .modal-body,
.modal .modal-header {
    padding: 0;
    border: none;
}

.modal .modal-title {
    margin-bottom: 26px;
    color: #FFF;
    font-family: 'Gilroy', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.modal .close-btn {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 34px;
    right: 34px;
    background: transparent;
    border: none;
}

.modal .close-btn:hover {
    transform: rotate(90deg);
}

.modal .modal-form .form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal .modal-form .form-group span {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 10px;
}

.modal .modal-form .form-group input {
    padding: 18px 20px;
    border: none;
    background: var(--black);
    width: 100%;
}

.modal .modal-form .form-group input,
.modal .modal-form .form-group input::placeholder {
    color: #8B8B8B;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.modal .modal-form .modal-btns {
    padding-top: 18px;
    display: flex;
    align-items: center;
}

.modal .modal-form .modal-btns button {
    margin-right: 30px;
    border: none;
}

.modal .modal-form .modal-btns label {
    color: #A7A7A7;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    max-width: 285px;
    margin-bottom: 0;
}

.modal .modal-form .modal-btns label .control__indicator {
    border: 1px solid #4E4E4E;
    width: 17px;
    height: 17px;
    top: 9px;
}

.modal .modal-form .modal-btns .control--checkbox .control__indicator:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
}

.modal .modal-form .modal-btns .control input:checked ~ .control__indicator {
    background: transparent;
}

.modal .modal-list ul {
    padding-left: 0;
    margin-bottom: 40px;
    list-style: none;
}

.modal .modal-list ul li {
    padding-left: 22px;
    position: relative;
    color: #B4B4B4;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    position: relative;
}

.modal .modal-list ul li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--red);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.modal .modal-list ul li:last-child {
    margin-bottom: 0;
}

#monetary-modal .modal-title {
    margin-bottom: 34px;
}

#monetary-modal .modal-dialog {
    max-width: 776px;
}

#monetary-modal .modal-content {
    padding: 40px;
}

#monetary-modal .modal-list-btn button {
    border: none;
}

/* end */

.mob {
    display: none !important;
}

footer{
    background: url("/assets/images/footer.webp") center/cover;
    padding: 60px 0 0 0;
}
.footer_top .container{
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: flex-start;
    row-gap: 30px;
}
.footer_menu{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 12px;
    width: fit-content;
}
.footer-menu_item{
    font-size: 14px;
    color: #959595;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    &:before{
        content: '';
        width: 12px;
        height: 1px;
        background: currentColor;
        flex-shrink: 0;
    }
}
.footer-menu_item-wrapper>summary .footer-menu_item{
    display: flex;
    align-items: center;
    gap: 10px;
    &:after{
        content: '';
        width: 5px;
        height: 5px;
        border-right: 1px solid var(--red);
        border-bottom: 1px solid var(--red);
        translate: 0 -17%;
        rotate: 45deg;
    }
}
.footer-menu_item-child-list{
    margin: 10px 0 0 0;
    padding: 0 0 0 24px;
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
}
.footer_bottom {
    margin: 80px auto 0 auto;
    .container {
        border-top: 1px solid #959595;
        padding: 25px 0;
        display: flex;
        align-items: center;
    }
}
.footer_contact-list{
    display: grid;
    grid-template-columns: 100%;
    gap: 24px;
}
.footer_address-txt{
    font-size: 12px;
}
.footer-address{
    margin: 7px 0 0 0;
    font-weight: 600;
}
.footer-contact{
    display: grid;
    grid-template-columns: 100%;
    gap: 5px;
}
.footer-contact_label{
    font-size: 12px;
}
.footer-contact_value{
    font-weight: 700;
    color: inherit;
    line-height: 1em;
}
.footer-contact_value.tel{
    font-size: 24px;
}
.footer_bottom-txt{
    margin: 0 auto 0 0;
    font-size: 12px;
    max-width: 200px;
}
.footer_policy{
    margin: 0 60px 0 0;
    font-size: 12px;
    padding: 10px 14px;
    border: 1px solid white;
    color: white;
}
.footer_copyright{
    font-size: 12px;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: var(--container-width);
    }
}

@media only screen and (max-width: 1200px) {
    .steps-accordion {
        margin-top: 0;
    }

    .hero-block {
        max-width: 680px;
    }

    .set-contact {
        padding: 30px;
    }

    header .free-call {
        display: none;
    }
}

@media (max-width: 1024px){
    html{
        font-size: 14px;
    }
    .desktop-header{
        display: none;
    }
    .mobile-header{
        display: block;
    }
    .slider_nav-btn{
        width: 40px;
        &:before{
            width: 10px;
        }
    }
    .section{
        margin: 60px 0;
    }
    .article-card_img{
        height: 135px;
    }
    .article-card_content{
        padding: 20px;
    }
    .article-card_date{
        font-size: 12px;
    }
    .article-card_title{
        font-size: 14px;
    }
    .article-card_txt{
        font-size: 14px;
    }
    .article-card_more{
        margin: 25px 0 0 0;
        font-size: 14px;
    }
    .vacancy-card{
        grid-template-rows: 220px 1fr auto;
    }
    .vacancy-card_title{
        font-size: 20px;
    }
    .vacancy-card_salary-period{
        font-size: 12px;
    }
    .vacancy-card_salary{
        font-size: 12px;
    }
    .social-rov{
        grid-template-columns: 100%;
        gap: 20px;
    }
    .social-sec .social-block{
        min-height: 0;
    }
    .faq-item_question{
        padding: 12px;
        font-size: 14px;
    }
    .footer{
        padding: 15px 0 0 0;
    }
    .footer_top .container{
        grid-template-columns: 100%;
    }
    .footer_bottom{
        margin: 35px 0 0 0;
        background: var(--black);
        .container{
            padding: 25px var(--mobile-gap);
        }
    }
}
@media(max-width: 800px){
    .footer_bottom .container{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer_policy{
        margin: 0;
    }
}

@media only screen and (max-width: 992px) {
    .mob {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .video-sec .video-block img,
    .video-sec .video-block video,
    .video-sec .video-block iframe {
        height: 100%;
        object-fit: cover;
    }

    header .navbar {
        position: unset;
    }

    .nav-item.parent:hover .hover-menu{
        display: none;
    }

    header .top-nav {
        border: none;
        padding: 0;
    }

    header .head-link,
    header .free-call,
    header .head-contact {
        display: none;
    }

    header .location-drop {
        margin-left: 14px;
        margin-right: 16px;
        padding: 12px 0;
        border-right: none;
        border-left: none;
    }
    .header .head-logo span{
        width: 100%;
        max-width: 120px;
    }
    .dropdown-menu .menu-inner form .search-form input{
        background: none;
        padding-left:0;
        border-bottom: 1px solid #969696;
    }
    .cities-mobile{
        width: 100%;
    }
    .search-block{
        max-height: 190px;
        overflow: auto;

    }
    .search-block::-webkit-scrollbar {
        width: 8px;
        background-color: #B8B8B8;
        border-radius: 10px;
    }
    .search-btn{
        display: none;
    }
    .search-block::-webkit-scrollbar-thumb {
        background: #898989;
        border-radius: 10px;
    }
    .dropdown-menu{
        left: 0 !important;
        top: 66px !important;
        transform: none !important;
        min-width: 100%;
    }
    .dropdown, .dropend, .dropstart, .dropup{
        position: inherit;
    }

    header .mob .free-call,
    header .mob .head-contact {
        display: flex;
    }

    header .mob .head-contact {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-right: 0;
    }

    header .mob .free-call {
        margin-top: 30px;
        justify-content: flex-end;
        margin-right: 0;
    }

    header .navbar {
        border-right: none;
        border-left: none;
        padding: 9px 12px;
    }

    header .navbar-collapse {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        background: var(--black);
        z-index: 10001;
        transition: .5s all ease;
        padding: 30px 15px;
        box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, .5);
        display: none;
    }

    header .navbar-collapse.active {
        display: block;
        right: 0;
    }

    header .navbar .navbar-nav {
        align-items: flex-end;
        gap: 20px;
    }

    header .navbar .nav-item .nav-link {
        font-size: 18px;
        padding: 0;
    }

    header .navbar .nav-item .nav-link:hover::after {
        width: 100%;
        bottom: -1px;
    }

    header .red-btn {
        font-size: 10px;
    }

    header .navbar .menu-opener {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
    }
    .menu-opener *{
        pointer-events: none;
    }

    header .navbar .menu-opener span {
        position: relative;
        width: 33px;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
    }

    header .navbar .menu-opener span.three {
        margin-bottom: 0;
    }

    header .navbar .menu-opener.active span.one {
        transform: rotate(45deg);
        top: 4px;
        background: var(--red);
    }

    header .navbar .menu-opener.active span.three {
        transform: rotate(-45deg);
        top: -4px;
        background: var(--red);
    }

    header .navbar .menu-opener.active span.two {
        display: none;
    }

    .second-btn {
        font-size: 14px;
        height: 50px;
        width: 240px;
    }

    .forces-sec .forces-block {
        padding: 60px 0 35px;
        height: 400px;
        border-bottom: 1px solid #4F4F4F;
    }

    .forces-sec .forces-block .forces-inner .forces-title {
        font-size: 26px;
    }

    .forces-sec .two-col,
    .forces-sec .one-col {
        border-right: none;
    }

    .forces-sec .forces-con {
        border: none;
    }

    .forces-sec .forces-con::before {
        content: none;
    }

    .forces-sec .forces-left .forces-img {
        transform: rotate(65deg);
        right: -100px;
        top: 130px;
    }

    .forces-sec .forces-right .forces-img {
        transform: rotate(25deg);
        right: -270px;
        top: 80px;
    }

    .forces-sec .forces-right .forces-img img {
        width: 60%;
    }

    .forces-sec .forces-right-two .forces-img {
        right: -180px;
        top: 155px;
        transform: rotate(-20deg);
    }

    .forces-sec .forces-right-two .forces-img img {
        width: 65%;
    }

    .video-sec .title .video-title,
    .title .h2-title {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 8px;
    }

    .title p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .set-sec .title p {
        margin-bottom: 26px;
    }

    .set-contact{
        font-size: 18px;
        line-height: 28px;
    }

    .set-sec {
        padding-top: 60px;
    }

    .set-list {
        padding: 20px;
    }

    .set-list .set-tag {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .set-list ul li {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .video-sec {
        padding-top: 60px;
    }

    .video-sec .title .video-title img {
        display: none;
    }

    .video-sec .title .video-title {
        padding-left: 0;
    }

    .video-sec .title {
        margin-bottom: 30px;
    }

    .video-sec .video-block {
        height: 350px;
    }

    .video-sec .video-block .video-btn .play-radius img {
        width: 110px;
        height: 110px;
    }

    .video-sec .video-block .play-btn img {
        width: 70px;
        height: 70px;
    }

    .new-volunteers .flag-img {
        display: none;
    }

    .new-volunteers {
        padding: 0 0 50px;
    }

    .new-volunteers .new-con {
        padding-top: 0;
        border: none;
        padding: 0;
    }

    .new-volunteers .new-info p {
        font-size: 14px;
        line-height: 24px;
    }

    .new-volunteers .new-info {
        margin-bottom: 16px;
    }

    .new-volunteers .new-info img {
        height: 187px;
        object-fit: cover;
    }

    .monetary-sec {
        padding: 40px 0;
    }

    .monetary-sec .title {
        margin-bottom: 30px;
    }

    .monetary-sec .monetary-block-title span {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 0;
    }

    .monetary-sec .monetary-block-title p {
        font-size: 23px;
        line-height: 33px;
        margin-bottom: 14px;
    }

    .monetary-sec .monetary-block-text p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .monetary-sec .monetary-second-right, .monetary-sec .monetary-right-col {
        padding: 0 12px;
    }

    .monetary-sec .monetary-left-col .monetary-block-text {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid #4F4F4F;
    }

    .monetary-sec .monetary-right-col .monetary-block-title span {
        margin-bottom: 18px;
    }

    .monetary-sec .monetary-rov {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #4F4F4F;
    }

    .monetary-sec .monetary-second-title span {
        font-size: 22px;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .monetary-sec .monetary-second-title p {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 34px;
    }

    .monetary-sec .monetary-list-text p {
        font-size: 23px;
        line-height: 34px;
        margin-bottom: 4px;
    }

    .monetary-sec .monetary-list-text > span {
        font-size: 14px;
        line-height: 22px;
    }

    .monetary-sec .monetary-list-text:last-child,
    .monetary-sec .monetary-list-text {
        margin-bottom: 24px;
    }

    .monetary-sec .monetary-list p {
        font-size: 23px;
        line-height: 34px;
        margin-bottom: 14px;
    }

    .monetary-sec .monetary-list ul li {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .social-sec {
        padding: 64px 0 0;
    }

    .social-sec .title {
        margin-bottom: 40px;
    }

    .social-sec .social-block {
        padding: 18px;
    }

    .social-sec .social-block {
        line-height: 22px;
    }

    .form-sec .form-rov {
        padding: 20px 12px;
    }

    .form-sec .form-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .form-sec .form-numbers a {
        font-size: 20px;
        line-height: 24px;
    }

    .form-sec .form-contact .icon {
        margin-right: 14px;
    }

    .form-sec .form-contact .icon img {
        height: 18px;
    }

    .form-sec .form-call {
        margin-left: 50px;
        margin-top: 20px;
    }

    .form-sec .form-call a {
        font-size: 20px;
        line-height: 26px;
    }

    .form-sec .form-call p {
        font-size: 14px;
        line-height: 18px;
    }

    .form-sec .form-contact.mob {
        display: flex !important;
        margin-top: 30px;
    }

    .form-block {
        padding-left: 0;
    }

    .form-block .form-btn {
        padding-top: 10px;
    }

    .form-block .form-btn button {
        margin-left: auto;
        margin-right: auto;
    }

    .form-block .form-agree {
        margin-left: 17px;
    }

    .link-btn .link-arrow {
        margin-left: 14px;
        width: 24px;
        height: 24px;
    }

    .quote-sec {
        display: none;
    }

    .swiper-btns button {
        width: 40px;
        height: 40px;
    }

    .swiper-btns button svg {
        height: 12px;
    }

    .swiper-btns {
        gap: 7px;
    }
    .accordion-item .accordion-header .accordion-button {
        padding: 14px 0;
    }

    .accordion-item .accordion-header .accordion-button .text {
        font-size: 18px;
        line-height: 32px;
        width: 90%;
    }

    .accordion-body {
        padding: 12px 12px 30px;
    }

    .accordion-body .body-text span {
        display: none;
    }

    .accordion-body .body-text p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 18px;
        position: relative;
        padding-left: 16px;
    }

    .accordion-body .body-text p::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 9px;
        background: var(--red);
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .accordion-body .body-text {
        margin-bottom: 0;
    }

    .slide-content {
        padding-bottom: 95px;
        margin-top: 35px;
    }

    .slide-content .owl-nav {
        left: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin-bottom: 35px;
    }

    .slide-content .owl-nav button {
        margin: 0;
        padding: 0;
    }

    .slide-content .owl-nav button img {
        width: 40px;
        height: 40px;
    }

    .slide-content .owl-nav .owl-prev {
        margin-bottom: 0;
    }

    .slide-content .body-slide .slide-item img {
        height: auto;
        object-fit: unset;
    }

    .our-heroes .title .h2-title img {
        display: none;
    }

    .our-heroes {
        padding-top: 60px;
    }

    .our-heroes .heroes-content {
        padding: 20px 20px 60px;
    }

    .hero-top .hero-img img {
        width: 100%;
        height: 163px;
    }

    .hero-top {
        display: block;
    }

    .hero-block:before{
        display: none;
    }

    .hero-top .hero-in {
        margin-left: 0;
        margin-top: 14px;
    }

    .hero-top .hero-info p {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-top .hero-info span {
        font-size: 12px;
        line-height: 1.2;
    }

    .hero-top .hero-tag {
        font-size: 10px;
    }

    .heroes-content .swiper-btns {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        left: 0;
        bottom: 20px;
    }

    .heroes-content .swiper-btns .swiper-button-next {
        order: 2;
        margin: 0;
    }

    .heroes-content .swiper-btns .swiper-button-prev {
        order: 1;
        margin: 0;
    }

    .award-block .award-img {
        margin: auto;
    }

    .award-block .owl-nav {
        display: flex;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .award-block .owl-nav button img {
        height: 22px;
    }

    .hero-block .award-title {
        font-size: 14px;
        margin-bottom: 14px;
        text-align: center;
    }

    .award-block {
        position: relative;
    }

    .map-sec .map-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .map-sec .map-title .location-drop .map-drop {
        display: none;
    }

    .map-sec .map-title .title p {
        font-size: 18px;
        line-height: 28px;
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }

    .map-sec {
        padding: 60px 0;
    }

    .modal .modal-content {
        padding: 30px 20px;
    }

    .modal .modal-form .modal-btns {
        flex-direction: column;
    }

    .modal .modal-form .modal-btns button {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .modal .modal-title {
        font-size: 18px;
        line-height: 26px;
        width: 83%;
    }

    #monetary-modal .modal-content {
        padding: 20px 18px;
    }

    .modal .modal-list ul li {
        font-size: 16px;
    }
}


@media only screen and (max-width: 375px) {

    .forces-sec .forces-left .forces-img {
        right: -150px;
    }

    .forces-sec .forces-right .forces-img {
        right: -300px;
    }

    .forces-sec .forces-block .forces-inner p {
        max-width: 240px;
    }

    .forces-sec .forces-left-two .forces-img {
        right: -12px;
        top: 140px;
    }
    .forces-sec .forces-left-two .forces-img.raketa{
        right: -190px;
        top: 150px;
    }
}
@media (max-width:575px){
  body{padding-bottom:82px}
  #float-whatsapp,
  #float-tg{display:none!important}
  .mobile-float-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    background:#1C1C1C;
    display:grid;
    grid-template-columns:minmax(0, 1fr) 64px 64px;
    gap:8px;
    align-items:center;
    padding:10px 14px;
    border-top:1px solid #303030;
    font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif
  }
  .mobile-float-bar a,
  .mobile-float-bar button{
    min-width:0;
    min-height:56px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    cursor:pointer;
  }
  .mobile-float-bar button{
    border:0;
  }
  .float-item_consultation{
    padding:0 14px;
    background:var(--red);
    color:white;
    font-size:13px;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
  }
  .float-item_messenger{
    flex-direction:column;
    gap:4px;
    border:1px solid #3A3A3A;
    background:#242424;
    color:#D7D7D7;
  }
  .float-item_icon{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .float-item_icon--desktop{
    border-radius:50%;
    background:white;
  }
  .float-item_icon img,
  .float-item_icon svg{
    width:20px;
    height:20px;
    display:block;
    object-fit:contain;
  }
  .float-item_icon--desktop path{
    fill:var(--green);
  }
  .float-item_icon--max{
    padding:5px;
  }
  .float-item_icon--max svg{
    width:100%;
    height:100%;
  }
  .float-item_label{
    color:#D7D7D7;
    font-size:10px;
    line-height:1;
    font-weight:700;
    white-space:nowrap;
    text-align:center;
    text-transform:uppercase;
  }
  .float-item:focus,
  .float-item:focus-visible{outline:0}
}
@media (min-width:576px){
  .mobile-float-bar{display:none}
}
.change-city-desktop_list::-webkit-scrollbar {
    width: 6px;
}

.change-city-desktop_list::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.change-city-desktop_list::-webkit-scrollbar-thumb {
    background: #444444;
    border-radius: 0;
}

.change-city-desktop_list::-webkit-scrollbar-thumb:hover {
    background: #555555;
}
.change-city-desktop_label,
.change-city-mobile_label {
    cursor: pointer;
}

.change-city-desktop_label:hover .change-city-desktop_label-txt,
.change-city-mobile_label:hover .change-city-mobile_label-txt {
    color: #E5E5E5;
}

.change-city-desktop[open] .change-city-desktop_label-txt:after,
.change-city-mobile[open] .change-city-mobile_label-txt:after {
    translate: 0 12%;
    rotate: 225deg;
}

.change-city-desktop_content,
.change-city-mobile_content {
    border: 1px solid #333333;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.change-city-desktop_content {
    width: min(680px, calc(100vw - 32px));
    max-height: calc(100dvh - 130px);
    overflow: hidden;
}

.change-city-desktop_content .menu-inner,
.change-city-mobile_content .menu-inner,
.map-city-picker .menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.city-picker_hint {
    margin: 10px 0 0;
    color: #8F8F8F;
    font-size: 12px;
    line-height: 1.35;
}

.change-city-desktop_search-input,
.change-city-mobile_search-input,
.map-city-picker .search-form input {
    border: 1px solid #2B2B2B;
    border-radius: 6px;
}

.change-city-desktop_search-input:focus,
.change-city-mobile_search-input:focus,
.map-city-picker .search-form input:focus {
    border-color: var(--red);
}

.change-city-desktop_list,
.change-city-mobile_list,
.map-city-picker .search-block {
    min-height: 0;
    padding-right: 6px;
}

.change-city-desktop_list,
.change-city-mobile_list {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    max-height: min(48dvh, 430px);
    gap: 8px;
}

.change-city-desktop_city,
.change-city-mobile_city,
.map-city-picker .search-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px;
    color: #F1F1F1;
    line-height: 1.25;
    border: 1px solid #333333;
    border-radius: 6px;
    background: #181818;
}

.change-city-desktop_city:hover,
.change-city-mobile_city:hover,
.map-city-picker .search-item a:hover,
.change-city-desktop_city.is-current,
.change-city-mobile_city.is-current,
.map-city-picker .search-item a.is-current {
    color: #FFFFFF;
    border-color: var(--red);
    background: rgba(219, 48, 48, 0.12);
}

.change-city-desktop_city small,
.change-city-mobile_city small,
.map-city-picker .search-item a small {
    flex: 0 0 auto;
    color: #FF7A7A;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.city-picker_empty {
    margin-top: 14px;
    padding: 13px 14px;
    color: #C8C8C8;
    font-size: 14px;
    text-align: center;
    border: 1px dashed #3F3F3F;
    border-radius: 6px;
}

.map-city-picker .dropdown-menu {
    min-width: 0;
    width: min(680px, calc(100vw - 24px));
    padding: 24px;
    border: 1px solid #333333;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.map-city-picker .menu-closer {
    border: none;
    background: transparent;
    padding: 0;
}

.map-city-picker .search-block {
    display: block;
    margin-top: 14px;
    max-height: min(46dvh, 420px);
    overflow-y: auto;
}

.map-city-picker .dropdown-menu .menu-inner form .search-form input {
    background: var(--black);
    padding: 15px 56px 15px 20px;
    border: 1px solid #2B2B2B;
    border-radius: 6px;
}

.map-city-picker .search-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
}

.map-city-picker .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
}

.change-city-desktop_list::-webkit-scrollbar,
.change-city-mobile_list::-webkit-scrollbar,
.map-city-picker .search-block::-webkit-scrollbar {
    width: 6px;
}

.change-city-desktop_list::-webkit-scrollbar-track,
.change-city-mobile_list::-webkit-scrollbar-track,
.map-city-picker .search-block::-webkit-scrollbar-track {
    background: #1A1A1A;
}

.change-city-desktop_list::-webkit-scrollbar-thumb,
.change-city-mobile_list::-webkit-scrollbar-thumb,
.map-city-picker .search-block::-webkit-scrollbar-thumb {
    background: #444444;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .change-city-mobile_content {
        position: fixed;
        top: 70px;
        left: 12px;
        right: 12px;
        z-index: 10020;
        width: auto;
        max-height: calc(100dvh - 90px);
        padding: 20px;
        overflow: hidden;
    }

    .change-city-mobile_list {
        grid-template-columns: 1fr;
        max-height: calc(100dvh - 245px);
    }

    .change-city-mobile_city {
        min-height: 48px;
    }

    .map-city-picker .dropdown-menu {
        width: calc(100vw - 24px);
        padding: 20px;
    }

    .map-city-picker .search-item {
        grid-template-columns: 1fr;
    }
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #e0e0e0;
    background-color: transparent;
}

th, td {
    border: 1px solid #333333;
    padding: 12px 15px;
    text-align: left;
}

th {
    font-weight: bold;
    color: #ffffff;
}
